home *** CD-ROM | disk | FTP | other *** search
- function animateExplosion()
- {
- bombland._alpha = explodealpha;
- explodealpha *= 0.91;
- explodesteps--;
- if(explodesteps < 1)
- {
- removeMovieClip(bombland);
- this.player1healthind.lifebar._xscale = player1health;
- this.player2healthind.lifebar2._xscale = player2health;
- bombland._alpha = 0;
- drawlandscape();
- rotateplayers();
- action = "end turn";
- }
- }
-